/* banner style */
.banner_w3pvt {
    position: relative;
    z-index: 1;
}

.banner-top {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-top1 {
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-top2 {
    background: url(../images/banner3.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-top3 {
    background: url(../images/banner4.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.banner-info {
    padding-top: 6em;
}

.banner-w3layouts-inner {
    text-align: center;
    padding: 2em;
    margin: 0 auto;
}

.banner-info h3 {
    text-shadow: 3px 1px 3px rgba(45, 45, 45, 0.38);
    font-size: 2em;
    color: #fff;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
}

.banner-info i {
    vertical-align: middle;
}

.banner-top,
.banner-top1,
.banner-top2,
.banner-top3 {
    min-height: 40em;
}

.overlay {
    min-height: 40em;
    background: rgba(0, 0, 0, 0.44);
}



/* header */
/* CSS Document */
header {
    position: absolute;
    z-index: 9;
    width: 100%;
    padding: 2rem 0 1rem 0;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px 0.5em;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.85em;
    position: relative;
    padding: 0.2rem;
}


nav ul li ul li:hover {
    background: #f8f9fa;
}

/* Background color change on Hover */
nav a:hover {
    color: #ddd;
    background: transparent;
}

.menu li.active a {
    color: #0063dc;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 25px;
    background: #fff;
    padding: 10px;
}

ul.inner-dropdown a:hover {
    color: #660099;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 160px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 992px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    .header-section {
        float: left;
    }

    nav ul {
        width: 100%;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 8px 18px;
        font-size: 20px;
        text-decoration: none;
        border: none;
        float: right;
        cursor: pointer !important;
        color: #333;
        background-color: #fff;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 25%;
        padding: 5px;
        font-weight: normal;
        font-size: 15px;
        letter-spacing: 1px;
        background: none;
        color: #333;
    }

    .toggle:hover {
        color: #333;
        background-color: #fff;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
        background: #ffff;
        padding: 15px 0;
        text-align: center;
        border: 1px solid #ddd;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
        margin: 0;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

    nav a {
        color: #333;
    }

    nav a:hover {
        color: #333;
    }

    .menu li.active a {
        color: #333;
    }

    nav ul ul li a {
        display: inline-block;
        font-size: 15px;
    }

    ul.inner-dropdown {
        padding-bottom: 0 !important;
        padding-top: 8px !important;
    }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

.banner-w3layouts-top-icons li {
    display: inline-block;
    text-shadow: 3px 1px 3px rgba(45, 45, 45, 0.38);
    font-size: 1em;
    color: #fff;
    font-weight: 400;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 3px;
}

li.icons a {
    width: 48px;
    height: 48px;
    text-align: center;
    display: inline-block;
    font-size: 1em;
    border-radius: 50%;
    line-height: 33px;
    padding: 0;
    background: transporant;
    color: #fff;
}

/*-- // header --*/

/*-- Responsive design --*/
@media screen and (max-width:1450px) {
    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .overlay {
        min-height: 40em;
    }

    h3.title-w3pvt,
    h3.title-w3pvt.two {
        font-size: 2.5em;
    }

    .banner-info h3 {
        font-size: 3.2em;
    }
}

@media screen and (max-width: 1280px) {
    .banner-info {
        padding-top: 14em;
    }
}

@media screen and (max-width: 1080px) {
    .banner-info h3 {
        font-size: 5em;
    }

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .overlay {
        min-height: 40em;
    }

    .banner-info {
        padding-top: 14em;
    }

    .progress-one {
        margin-bottom: 1.2em;
    }

    .gd-bottom img {
        width: 50%;
        margin-top: 2em;
    }
}

@media screen and (max-width:1024px) {

    .main-w3layouts-header-sec.inner-page,
    .overlay-innerpage {
        min-height: 18em;
    }

    .partner-w3pvt span {
        font-size: 1.2em;
    }

    .partner-w3pvt h4 {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 992px) {

    .main-w3layouts-header-sec.inner-page,
    .overlay-innerpage {
        min-height: 16em;
    }

    .banner-info h3 {
        font-size: 1.5em;
    }

    .banner-w3layouts-top-icons li {
        font-size: 0.9em;
        letter-spacing: 2px;
    }

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .overlay {
        min-height: 35em;
    }

    .banner-info {
        padding-top: 11em;
    }

    .gd-bottom {
        float: left;
        width: 50%;
    }
}

@media screen and (max-width: 736px) {
    .banner-info h3 {
        font-size: 4.5em;
    }

    h3.title-w3pvt,
    h3.title-w3pvt.two {
        font-size: 2.3em;
    }

    .con-gd {
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 667px) {

    .main-w3layouts-header-sec.inner-page,
    .overlay-innerpage {
        min-height: 14em;
    }
}

@media screen and (max-width: 640px) {

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .overlay {
        min-height: 30em;
    }

    .banner-info {
        padding-top: 9em;
    }

    .gd-bottom {
        float: left;
        width: 80%;
        margin: 0 auto;
    }

    .gd-bottom.team-wthree-gd {
        text-align: center;
    }
}


@media screen and (max-width:600px) {
    .banner-info h3 {
        font-size: 1em;
    }

    .banner-info h4 {
        font-size: 1em;
        letter-spacing: 1px;
    }

    .subscribe-sec {
        padding: 40px 40px;
    }

    p.counter {
        font-size: em;
        line-height: 1em;
    }

    .sub-wthree {
        font-size: 1em;
    }

    .gd-bottom {
        float: left;
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width:568px) {

    .banner-top,
    .banner-top1,
    .banner-top2,
    .overlay {
        min-height: 25em;
    }

    .banner-info {
        padding-top: 7em;
    }

    .main-w3layouts-header-sec.inner-page,
    .overlay-innerpage {
        min-height: 12em;
    }
}

@media screen and (max-width: 480px) {
    .banner-info h3 {
        font-size: 1.2em;
    }

    li.icons a {
        width: 36px;
        height: 36px;
    }

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .overlay {
        min-height: 23em;
    }

    h3.title-w3pvt,
    h3.title-w3pvt.two {
        font-size: 1.2em;
    }

    .w3layouts-contact-fm {
        margin: 0 auto;
        width: 90%;
    }
}

@media screen and (max-width: 414px) {

    h3.title-w3pvt,
    h3.title-w3pvt.two {
        font-size: 1.8em;
    }

    .banner-w3layouts-top-icons li {
        font-size: 0.8em;
        letter-spacing: 1px;
    }

    .main-w3layouts-header-sec.inner-page,
    .overlay-innerpage {
        min-height: 10em;
    }
}

@media screen and (max-width: 384px) {

    h3.title-w3pvt,
    h3.title-w3pvt.two {
        font-size: 1.2em;
    }

    .banner-info h3 {
        font-size: 1.2em;
    }

    .banner-top,
    .banner-top1,
    .banner-top2,
    .banner-top3,
    .overlay {
        min-height: 22em;
    }

    .banner-info {
        padding-top: 6em;
    }
}

@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}

/*-- //Responsive design --*/